home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Components / Swiftsoft Multimedia Tools / MMTOOL3.EXE / MMMpReg.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1998-10-07  |  2.5 KB  |  59 lines

  1. {========================================================================}
  2. {=                (c) 1995-98 SwiftSoft Ronald Dittrich                 =}
  3. {========================================================================}
  4. {=                          All Rights Reserved                         =}
  5. {========================================================================}
  6. {=  D 01099 Dresden             = Fax.: +49(0)351-8037944               =}
  7. {=  Loewenstr.7a                = info@swiftsoft.de                     =}
  8. {========================================================================}
  9. {=  Actual versions on http://www.swiftsoft.de/index.html               =}
  10. {========================================================================}
  11. {=  This code is for reference purposes only and may not be copied or   =}
  12. {=  distributed in any format electronic or otherwise except one copy   =}
  13. {=  for backup purposes.                                                =}
  14. {=                                                                      =}
  15. {=  No Delphi Component Kit or Component individually or in a collection=}
  16. {=  subclassed or otherwise from the code in this unit, or associated   =}
  17. {=  .pas, .dfm, .dcu, .asm or .obj files may be sold or distributed     =}
  18. {=  without express permission from SwiftSoft.                          =}
  19. {=                                                                      =}
  20. {=  For more licence informations please refer to the associated        =}
  21. {=  HelpFile.                                                           =}
  22. {========================================================================}
  23. {=  $Date: 07.10.98 - 11:33:57 $                                        =}
  24. {========================================================================}
  25. unit MMMpReg;
  26.  
  27. {$I COMPILER.INC}
  28.  
  29. Interface
  30.  
  31. Procedure Register;
  32.  
  33. Implementation
  34.  
  35. {$R MMMPEG.D32}
  36.  
  37. uses
  38.     Controls,
  39.     Classes,
  40.     DsgnIntf,
  41.     SysUtils,
  42.     MMMpeg,
  43.     MMAudio,
  44.     MMAPlay;
  45.  
  46. {==============================================================================}
  47. procedure Register;
  48. begin
  49.    RegisterComponents('MMWave', [TMMMpegFile,TMMAudioFile,TMMAudioPlayer]);
  50.  
  51.    RegisterPropertyEditor(TypeInfo(TFileName),TMMMpegFile,'FileName',TMMMpegFileNameProperty);
  52.    RegisterComponentEditor(TMMMpegFile, TMMMpegFileComponentEditor);
  53.  
  54.    RegisterPropertyEditor(TypeInfo(TFileName),TMMBaseAudioFile,'FileName',TMMAudioFileNameProperty);
  55.    RegisterComponentEditor(TMMBaseAudioFile, TMMAudioFileComponentEditor);
  56. end;
  57.  
  58. end.
  59.